home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
usr
/
include
/
enlightenment
/
e_popup.h
< prev
next >
Wrap
C/C++ Source or Header
|
2006-01-09
|
1KB
|
49 lines
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
typedef struct _E_Popup E_Popup;
#else
#ifndef E_POPUP_H
#define E_POPUP_H
#define E_POPUP_TYPE 0xE0b0100e
struct _E_Popup
{
E_Object e_obj_inherit;
int x, y, w, h;
int layer;
unsigned char visible : 1;
unsigned char shaped : 1;
unsigned char need_shape_export : 1;
Ecore_Evas *ecore_evas;
Evas *evas;
Ecore_X_Window evas_win;
E_Container_Shape *shape;
E_Zone *zone;
int shape_rects_num;
Ecore_X_Rectangle *shape_rects;
};
EAPI int e_popup_init(void);
EAPI int e_popup_shutdown(void);
EAPI E_Popup *e_popup_new(E_Zone *zone, int x, int y, int w, int h);
EAPI void e_popup_show(E_Popup *pop);
EAPI void e_popup_hide(E_Popup *pop);
EAPI void e_popup_move(E_Popup *pop, int x, int y);
EAPI void e_popup_resize(E_Popup *pop, int w, int h);
EAPI void e_popup_move_resize(E_Popup *pop, int x, int y, int w, int h);
EAPI void e_popup_ignore_events_set(E_Popup *pop, int ignore);
EAPI void e_popup_edje_bg_object_set(E_Popup *pop, Evas_Object *o);
EAPI void e_popup_layer_set(E_Popup *pop, int layer);
EAPI void e_popup_idler_before(void);
#endif
#endif